Conditions | 1 |
Total Lines | 9 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import { BaseEndpoint } from './baseEndpoint'; |
||
31 | |||
32 | /** |
||
33 | * Get the TV network logos by id. |
||
34 | * @param { number } networkID |
||
35 | * @return { Promise<NetworkImagesResponse> } |
||
36 | * @see https://developers.themoviedb.org/3/networks/get-network-images |
||
37 | */ |
||
38 | public async images(networkID: number): Promise<NetworkImagesResponse> { |
||
39 | return this.sendGetRequest(`network/${networkID}/images`); |
||
40 | } |
||
43 |